
/* start of contact us section */
.contact {
    background: black;
    padding: 3px;
    /* border-radius: 3px; */
    border: solid 1px black;
    color: #fff;
    transition: all 120ms;
    padding-top: 67px;
  }
  
  #contact_content{
    display: flex;
    JUSTIFY-CONTENT: center;
  }
  
  #links{
    width: 25%;
    display: flex;
    justify-content: center;
  }
  
  
  .main {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
  
  .up {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
  }
  
  .down {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
  }
  
  .card1 {
    width: 50px;
    height: 50px;
    outline: none;
    border: none;
    background: white;
    border-radius: 90px 5px 5px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: .2s ease-in-out;
  }
  
  .instagram {
    margin-top: 1.5em;
    margin-left: 1.2em;
    fill: #cc39a4;
  }
  
  .card2 {
    width: 50px;
    height: 50px;
    outline: none;
    border: none;
    background: white;
    border-radius: 5px 90px 5px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: .2s ease-in-out;
  }
  
  .twitter {
    margin-top: 1.5em;
    margin-left: -.9em;
    fill: #03A9F4;
  }
  
  .card3 {
    width: 50px;
    height: 50px;
    outline: none;
    border: none;
    background: white;
    border-radius: 5px 5px 5px 90px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: .2s ease-in-out;
  }
  
  .github {
    margin-top: -.6em;
    margin-left: 1.2em;
  }
  
  .card4 {
    width: 50px;
    height: 50px;
    outline: none;
    border: none;
    background: white;
    border-radius: 5px 5px 90px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: .2s ease-in-out;
  }
  
  .linkedin {
    margin-top: -.9em;
    margin-left: -1.2em;
    fill: #0A66C2;
  }
  
  .card1:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: #cc39a4;
  }
  
  .card1:hover .instagram {
    fill: white;
  }
  
  .card2:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: #03A9F4;
  }
  
  .card2:hover .twitter {
    fill: white;
  }
  
  .card3:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: rgb(62, 61, 61);
  }
  
  .card3:hover .github {
    fill: white;
  }
  
  .card4:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: #8c9eff;
  }
  
  .card4:hover .linkedin {
    fill: white;
  }
  
  .card {
    width: 194px;
      height: 78px;
    border-radius: 15px;
    box-shadow: rgb(0,0,0,0.7) 5px 10px 50px ,rgb(0,0,0,0.7) -5px 0px 250px;
    display: flex;
    color: white;
    justify-content: center;
    position: relative;
    flex-direction: column;
    background: linear-gradient(to right, rgb(20, 30, 48), rgb(36, 59, 85));
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
  }
  
  .card:hover {
    box-shadow: rgb(0,0,0) 5px 10px 50px ,rgb(0,0,0) -5px 0px 250px;
    transform: scale(120%);
  }
  
  .time-text {
    margin-top: 0px;
    margin-left: 15px;
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  
  .day-text {
    font-size: 15px;
    margin-top: 0px;
    margin-left: 15px;
    /* font-weight: 500; */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  
  #moon {
    font-size: 20px;
    position: absolute;
    right: 15px;
    top: 15px;
    transition: all 0.3s ease-in-out;
  }
  
  .card:hover > #moon {
    font-size: 23px;
  }
  
  #contact_texts{
    border: solid rgba(100, 100, 100, 0.733);
    border-radius: 5px;
    margin: 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
      width: 50%;
      padding: 5px;
    background-color: #212121b6;
  }
  
  #button_options {
    width: 160px;
    height: 56px;
    overflow: hidden;
    border: solid gray;
    border-radius: 5px;
    color: #fff;
    background: none;
    position: relative;
    padding-bottom: 2em;
  }
  
  #button_options > div,button > svg {
    position: absolute;
    padding-right:5px;
    width: 100%;
    height: 100%;
    display: flex;
  }
  
  #button_options:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: bottom right;
    background: currentColor;
    transition: transform 0.25s ease-out;
  }
  
  #button_options:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  #button_options .clone > *,button .text > * {
    opacity: 1;
    font-size: 13px;
    transition: 0.2s;
    margin-left: 4px;
    font-size: 15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  
  #button_options .clone > * {
    transform: translateY(60px);
  }
  
  #button_options:hover .clone > * {
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  }
  
  #button_options:hover .text > * {
    opacity: 1;
    transform: translateY(-60px);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  }
  
  #button_options:hover .clone > :nth-child(1) {
    transition-delay: 0.15s;
  }
  
  #button_options:hover .clone > :nth-child(2) {
    transition-delay: 0.2s;
  }
  
  #button_options:hover .clone > :nth-child(3) {
    transition-delay: 0.25s;
  }
  
  #button_options:hover .clone > :nth-child(4) {
    transition-delay: 0.3s;
  }
  /* icon style and hover */
  #button_options svg {
    width: 20px;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-50deg);
    transition: 0.2s ease-out;
  }
  
  #button_options:hover svg {
    transform: translateY(-50%) rotate(-90deg);
  }
  
  